home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Internet
/
News
/
Alexandra.0.82
/
Source
/
HideableClockView.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-01-30
|
258 b
|
20 lines
#import "HideableClockView.h"
@implementation HideableClockView
- drawSelf:(const NXRect *)rects :(int)rectCount
{
if(!hidden)
return [super drawSelf:rects :rectCount];
PSsetgray(NX_LTGRAY);
NXRectFill(&bounds);
return self;
}
@end